85 Royalty-Free Audio Tracks for "Okm Ii"

00:00
03:23
Interpret: Jenö Fescay Salon-Orchester Komponist: Johann Strauss (Sohn) Titel: Geschichten aus dem Wiener Wald Erstveröffentlichung: um 1927
Author: Carl Flisch
00:00
01:32
96 khz / 24 bits. Zoom h2n + soundman okm ii classic. Info: http://lo-fields. Blogspot. Com. Es/2013/11/el-parque-sin-nombre. Html.
Author: Apenino
00:00
03:24
Walking around music electronics convention superbooth at fez in berlin wuhlheide. Circa 2019. Okm mics, originally recorded at 48/24, compressed to flac at level 4.
Author: Brigitte
00:00
07:32
A long walk around one of berlin`s biggest shopping malls. Lots of people, lots of shopping. Recorded with okm mics.
Author: Brigitte
00:00
02:15
96 khz / 24 bits. Zoom h2n + soundman okm ii classicinfo: http://lo-fields. Blogspot. Com. Es/2013/11/baiona-el-puerto-y-el-mar. Html.
Author: Apenino
00:00
07:60
Binaural recording of a hailstorm recorded from my appartment in the 20th district of paris (fr) (9th of june 2014, 1am)okm with nagra ares ii. Hence listen with headphones!.
Author: Davidmenke
00:00
00:01
Start sound of mac ii iix iicx iici se/30. Create by dissessemble rom code and use wave table algorithm write c program write wav file. C program below:. /* mac_ii. C *//* boot beep mac ii *//* 2558/09/06 */. #include. #define knumber_samples 30000#define kdelay_note 300#define kwave_table_value 0x30013f10#define ksample_rate 22257 // hz. Void preparewavetable( unsigned short *wavetable, unsigned int value );void updatewavetable( unsigned short *wavetable, unsigned short chiso );void savesound( char *filename, short *sounddata, unsigned int numberframes, unsigned int samplerate );. Int main () {. // ---- wave tableunsigned short wavetable[256];// ---- sound data, stereoshort sounddata[knumber_samples << 1];// ---- increment array (16/16 bit fix point integer)int arrayincrement[] = {3 << 16, 4 << 16, (3 << 16) + 0x2f2, 6 << 16};// ---- prepare wave tablepreparewavetable( wavetable, kwave_table_value );. // ---- array phase (16/16 bit fix point integer)unsigned int arrayphase[] = {0, 0, 0, 0}; // set all = 0. Unsigned int samplenumber = 0;while( samplenumber < knumber_samples ) {. // ---- calculate sampleunsigned int channelleft = 0;unsigned int channelright = 0;unsigned char notenumber = 0;while ( notenumber < 4 ) {// ---- see if should update phase for note, only do if play noteif( samplenumber >= notenumber*kdelay_note ) {// ---- up date phase beforearrayphase[notenumber] += arrayincrement[notenumber];// ---- not let out of range [0; 255]if( arrayphase[notenumber] > 0xff0000 ) // 0xff0000 == 255 << 16arrayphase[notenumber] -= 0xff0000; // return to begin of wave table}unsigned short mauvat = wavetable[arrayphase[notenumber] >> 16];. // ---- add sound componentsif( notenumber < 2 ) // ---- first 2 notes left channelchannelleft += mauvat;else // ---- last 2 notes right channelchannelright += mauvat;// ---- next notenotenumber++;}// ---- save left and right samplessounddata[samplenumber << 1] = (channelleft << 9) - 0x8000; // use << 1 for 16 bitsounddata[(samplenumber << 1) + 1] = (channelright << 9) - 0x8000; // use << 1 for 16 bitupdatewavetable( wavetable, samplenumber & 0xff );samplenumber++;}// ---- save wav filesavesound( "mac ii. Wav", sounddata, samplenumber << 1, ksample_rate ); // multiply 2 because stereo. Return 1;}. Void preparewavetable( unsigned short *wavetable, unsigned int value ) {. // ---- prepare wave tableunsigned short index = 0;unsigned short wavetablevalue = value & 0xff;while( index < 64 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}. Wavetablevalue = (value >> 8) & 0xff;while( index < 128 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}. Wavetablevalue = (value >> 16) & 0xff;while( index < 192 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}wavetablevalue = (value >> 24) & 0xff;while( index < 256 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}}. Void updatewavetable( unsigned short *wavetable, unsigned short index ) {// ---- get value from wave tableunsigned short value = wavetable[index];// ---- calculate new value for wave tableif( index == 255 ) { // careful at last element of wave tablevalue += wavetable[0];value = (value >> 1);wavetable[0] = value;}else {value += wavetable[index+1];value = (value >> 1);wavetable[index+1] = value;}. }. #pragma mark ---- save wavvoid saveheader( file *filename, unsigned int samplerate );void savesounddatainteger16bit( file *filename, short *sounddata, unsigned int numbersamples );. Void savesound( char *filename, short *sounddata, unsigned int numberframes, unsigned int samplerate ) {// ---- open filefile *file = fopen( filename, "wb" );if( file ) {// ---- "riff"fprintf( file, "riff" );// ---- length sound file - 8unsigned int lengthsoundfile = 32;lengthsoundfile += numberframes << 1; // một không có một mẫu vạt cho kênh trái và phải// ---- save file lengthfputc( (lengthsoundfile) & 0xff, file );fputc( (lengthsoundfile >> 8) & 0xff, file );fputc( (lengthsoundfile >> 16) & 0xff, file );fputc( (lengthsoundfile >> 24) & 0xff, file );// ---- "wave"fprintf( file, "wave" );// ---- save headersaveheader( file, samplerate );// ---- save sound datasavesounddatainteger16bit( file, sounddata, numberframes );// ---- close filefclose( file );}else {printf( "problem save file %s\n", filename );}}. Void saveheader( file *file, unsigned int samplerate ) {// ---- name for header "fmt "fprintf( file, "fmt " );// ---- header lengthfputc( 0x10, file ); // length 16 bytefputc( 0x00, file );fputc( 0x00, file );fputc( 0x00, file );// ---- method for encode, 16 bit pcmfputc( 0x01 & 0xff, file );fputc( (0x00 >> 8) & 0xff, file );// ---- number channels (stereo)fputc( 0x02, file );fputc( 0x00, file );// ---- sample rate (hz)fputc( samplerate & 0xff, file );fputc( (samplerate >> 8) & 0xff, file );fputc( (samplerate >> 16) & 0xff, file );fputc( (samplerate >> 24) & 0xff, file );// ---- number bytes/secondunsigned int numberbytessecond = samplerate << 2; // multiply 4 because short (2 byte) * 2 channelfputc( numberbytessecond & 0xff, file );fputc( (numberbytessecond >> 8) & 0xff, file );fputc( (numberbytessecond >> 16) & 0xff, file );fputc( (numberbytessecond >> 24) & 0xff, file );// ---- byte cho một khung (nên = số lượng mẫu vật * số lượng kênh)// ---- number bytes for sampleunsigned short bytesoneframe = 4; // short (2 byte) * 2 channelunsigned char bitsonesample = 16; // shortfputc( bytesoneframe & 0xff, file );fputc( (bytesoneframe >> 8) & 0xff, file );. Fputc( bitsonesample, file );fputc( 0x00, file );}. Void savesounddatainteger16bit( file *file, short *sounddata, unsigned int numbersamples ) {fprintf( file, "data" );unsigned int datalength = numbersamples << 1; // each sample 2 bytefputc( datalength & 0xff, file );fputc( (datalength >> 8) & 0xff, file );fputc( (datalength >> 16) & 0xff, file );fputc( (datalength >> 24) & 0xff, file );unsigned int sampleindex = 0;while( sampleindex < numbersamples ) {short shortdata = sounddata[sampleindex];fputc( shortdata & 0xff, file );fputc( (shortdata >> 8) & 0xff, file );sampleindex++;}}.
Author: Sieuamthanh
00:00
02:02
Binaurai field-recording of children paying in a public swimming pool in a summer afternoon.
Author: Eguaus
00:00
00:30
Reverberant hammering sounds at construction site. Zoom h5 + soundman okm ii.
Author: Efd
00:00
00:38
Sounds from the taipei mrt. Zoom h5 + soundman okm ii.
Author: Efd
00:00
01:22
Late november ambience in taipei. Zoom h5 + soundman okm ii. --if you find this sound useful, do consider donating!.
Author: Efd
00:00
02:57
Soundscape of shi guanyin xiangguang temple 石觀音祥光寺 (taipei) on a quiet rainy day. Zoom h5 + soundman okm ii. --if you find this recording useful, do consider donating!.
Author: Efd
00:00
00:07
Playing with lulu the border terrier. Zoom h5 + soundman okm ii.
Author: Efd
00:00
02:01
Freight elevator, theatre kassel, recorded with edirol r-09 and okm ii stereo microphone.
Author: Thulitt
00:00
01:49
Recorded 100117 0400pmstereomicrophone: soundman okm ii klassik solorecording device: iriver h120.
Author: Krnd
00:00
01:32
Rowing on an old row boat on lake saimaa (finland). Equipment: zoom h5 + soundman okm ii.
Author: Efd
00:00
02:22
Recorded 100213 0600pmstereomicrophone: soundman okm ii klassik solorecording device: iriver h120.
Author: Krnd
00:00
00:35
About 100 year old music-box symphonion playing the tune "klosterglocken". Recording devices: edirol r-09, okm ii stereo microphones.
Author: Thulitt
00:00
00:20
Train sound, berlin s-bahn /the exciting sound of 800 volt dc-motors /zoom h4n & soundman okm ii binaural mics.
Author: Holophonicaudiolab
00:00
04:59
Binaural recording of a festive event. Slightly lowered dynamics. Hrtf corrected. Microphones: soundman okm studio ii.
Author: Janovlk
00:00
01:57
Testing my binaural mics. Listen with headphones for binaural effect. Recorded with soundman okm ii mics and a zoom h2n.
Author: Jankooiker
00:00
00:35
About 100 year old music-box symphonion playing the tune "wiener but". Recording devices: edirol r-09, okm ii stereo microphones.
Author: Thulitt
00:00
00:33
Hand water pump sound effect. Zoom h5 + soundman okm ii. --if you find this sound useful, do considering donating to freesound!.
Author: Efd
00:00
00:32
Sweeping leaves from the roof. Zoom h5 + soundman okm ii. --if you find these recordings useful, do consider donating to freesound!.
Author: Efd
00:00
19:48
Car traffic recorded at the b1 (bundesstrasse 1) near soest/germany. Recording device: edirol r-09, okm ii stereo microphones. Some loops included.
Author: Thulitt
00:00
02:01
Binaural recording of suburban garden ambience featuring a crow in hackney, london e8 [soundman okm ii studio].
Author: Toybox
00:00
01:13
Children playing outside during lunch break (amsterdam the netherlands). Okm binaurals ->uln-2 ->microtrack ii. Http://www. Reuven. Nl/?page_id=106.
Author: Yuval
00:00
00:37
About 100 year old music-box symphonion playing the waltz "wien bleibt wien". Recording devices: edirol r-09, okm ii stereo microphones.
Author: Thulitt
00:00
01:40
The second part of the sumer firework i recorded 3 years ago in nürnberg, germany. Recorded with olympus ls-10 and okm ii classic, on a balcony.
Author: Mcweigert
00:00
00:35
About 100 year old music-box symphonion playing the traditional christmas tune "o tannenbaum" (oh christmas tree). Recording devices: edirol r-09, okm ii stereo microphones.
Author: Thulitt
00:00
02:26
Suburban street in cagliari (sardinia, southern italy) recorded in a winter afternoon, you can hear traffic and the sound of birds on trees. Recorded with tascam dr-05 connected to soundman okm ii mic.
Author: Kommunic
00:00
16:01
A binaural recording of the tea river in pontevedra, spain. File recorded with soundman okm ii classic/studio solo and a tascam dr100 mkiii. 96 khz sample rate.
Author: Alvaroluisvillarcastillo
00:00
16:01
A binaural field-recording of the tea's riverside( pontevedra, spain). Sample rate: 96khz. Equipment: soundman okm ii classic/studio solo and tascam dr-100 mkiii. A raw recording (non edited).
Author: Alvaroluisvillarcastillo
00:00
03:02
Combeloup, grenoble. On field recording in a forest of autumn falling leaves, round 1 p. M. Of monday october 20 2014. I seated on path border, under the tree of the photo, trying don't move. Better headphone listening. Binaural recording: zoom h4, soundman okm ii klassic, wav 24 bit, 48 khzduration 3'.
Author: Giuseppegavazza
00:00
03:14
Binaural* recording of cathedral bells repeating over and over (not looped). Towards the end of the file the bells are heard from a distance (the recording continued while walking away). Recording notes:. 1. Recorded in the field using soundman okm ii binaural microphones with the h1 zoom recorder. Sunday 87/2/2015 mid afternoon. 2. The recording has been left unedited to allow the greatest amount of creative reworking. 3. Recordings are as long as possible for video usage (it's easier to shorten a sound than to expand it). 4. Volume in these series will be left unaltered to allow easier mixing as far as possible. You won't have distant birdsong louder than a closeup door slam. 5. Attribution is appreciated but not necessary. A "thanks" or smiley face in the comments below will be fine. Commercial use is okay. Any concerns, send me a message. *binaural is a recording method that allows surround sound over stereo headphones but over speakers can add depth when mixed with other sounds.
Author: Apinsent
51 - 85 of 85
/ 2